projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4375252
)
(hs-life-goes-on): Use Emacs' native backquote support.
author
Dan Nicolaescu
<done@ece.arizona.edu>
Sun, 17 May 1998 01:55:17 +0000
(
01:55
+0000)
committer
Dan Nicolaescu
<done@ece.arizona.edu>
Sun, 17 May 1998 01:55:17 +0000
(
01:55
+0000)
lisp/progmodes/hideshow.el
patch
|
blob
|
history
diff --git
a/lisp/progmodes/hideshow.el
b/lisp/progmodes/hideshow.el
index 51c4452ea74ae1c6efc0ddf35c18ffea2de4fabe..885ac0c6bee4baa3775d3e1d01e227ce752a0f5d 100644
(file)
--- a/
lisp/progmodes/hideshow.el
+++ b/
lisp/progmodes/hideshow.el
@@
-555,9
+555,10
@@
Return point, or nil if top-level."
(defmacro hs-life-goes-on (&rest body)
"Executes optional BODY iff variable `hs-minor-mode' is non-nil."
- (` (let ((inhibit-point-motion-hooks t))
- (when hs-minor-mode
- (,@ body)))))
+ `(let ((inhibit-point-motion-hooks t))
+ (when hs-minor-mode
+ ,@body)))
+
(put 'hs-life-goes-on 'edebug-form-spec '(&rest form))